home *** CD-ROM | disk | FTP | other *** search
/ Enigma Amiga Life 109 / EnigmaAmiga109CD.iso / dalla rivista / host contacted / imengv3.41p2.lha / ImEngV3.41p2 / Notes / AddSpaceB.notes < prev    next >
Text File  |  1999-10-15  |  1KB  |  90 lines

  1.  
  2.  
  3. Image Engineer script - AddSpace B v1.07
  4.  
  5.  
  6.  
  7. SHORT DESCRIPTION
  8.  
  9.   This script adds working space to one side of picture.
  10.  
  11.  
  12. REQUIREMENTS
  13.  
  14.   Image Engineer v3.41 (Wision release 2)
  15.  
  16.  
  17. INSTALLATION
  18.  
  19.   Archive where this file came from should be extracted to a
  20.   directory where you installed Image Engineer.
  21.  
  22.   This script must be in IE:Arexx/
  23.  
  24.  
  25. USAGE
  26.  
  27.   Activate window of an image you want to add space to.
  28.  
  29.   Run the script and choose a background color for new space;
  30.   White, Black or Guess. Guess makes script to look for a pixel at
  31.   bottom right corner and uses it's color value as background.
  32.   Slider is used to set size of new space.
  33.  
  34.  
  35. ARGUMENTS
  36.  
  37.   AddSpaceB.rexx <pic> <bg> <side> <space>
  38.  
  39.   <pic>   name of a picture (in IE)
  40.   <bg>    is one of following keywords:
  41.  
  42.            BLACK, WHITE or GUESS
  43.  
  44.   <side>  is one of following keywords:
  45.  
  46.            TOP, BOTTOM, LEFT or RIGHT
  47.  
  48.   <space> width of new space
  49.  
  50.  
  51.  
  52.  
  53.   AmigaDOS
  54.  
  55.     Sys:Rexxc/RX AddSpaceB.rexx <arguments>
  56.     Sys:Rexxc/RX AddSpaceB.rexx 000_testpic.iff WHITE top 50
  57.  
  58.  
  59.  
  60.   Other scripts:
  61.  
  62.     ADDRESS COMMAND "Sys:Rexxc/RX IE:Arexx/AddSpaceB.rexx <arguments>"
  63.  
  64.     Next lines return you the name of new picture.
  65.  
  66.     PROJECT_LIST
  67.     xyz=result
  68.     pic=subword(xyz,1,1)
  69.  
  70.  
  71.  
  72.  
  73.  
  74. HISTORY
  75.  
  76.   1.07
  77.  
  78.   Cleaned up the code and fixed argument parsing.
  79.  
  80.   1.03
  81.  
  82.   Space is now added to only one side of picture
  83.  
  84.   1.00
  85.  
  86.   History started
  87.  
  88.  
  89.  
  90.